home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power Programmierung 2
/
Power-Programmierung CD 2 (Tewi)(1994).iso
/
c
/
library
/
dos
/
window
/
winclip
/
proto.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1991-02-03
|
378 b
|
18 lines
/*** PROTO.H ***/
/* Written By P.A. McKenzie
* The C Window Library
* Copyright (C) 1990 All Rights Reserved
*/
#ifndef PROTO_DEF
#define PROTO_DEF
#define __PROTO__ /* Delete this line for compilers that do not support
* prototyping */
#if defined (__PROTO__)
# define P(s) s
#else
# define P(s) ()
#endif
#endif